home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / bbs_util / bsrc_260.zip / INCLUDE.ZIP / VFOSSIL.H < prev    next >
C/C++ Source or Header  |  1996-03-23  |  8KB  |  159 lines

  1. /*--------------------------------------------------------------------------*/
  2. /*                                                                          */
  3. /*                                                                          */
  4. /*      ------------         Bit-Bucket Software, Co.                       */
  5. /*      \ 10001101 /         Writers and Distributors of                    */
  6. /*       \ 011110 /          Freely Available<tm> Software.                 */
  7. /*        \ 1011 /                                                          */
  8. /*         ------                                                           */
  9. /*                                                                          */
  10. /*              (C) Copyright 1987-96, Bit Bucket Software Co.              */
  11. /*                                                                          */
  12. /*                                                                          */
  13. /*                                                                          */
  14. /*               Video FOSSIL definitions used in BinkleyTerm               */
  15. /*                                                                          */
  16. /*                                                                          */
  17. /*    For complete  details  of the licensing restrictions, please refer    */
  18. /*    to the License  agreement,  which  is published in its entirety in    */
  19. /*    the MAKEFILE and BT.C, and also contained in the file LICENSE.260.    */
  20. /*                                                                          */
  21. /*    USE  OF THIS FILE IS SUBJECT TO THE  RESTRICTIONS CONTAINED IN THE    */
  22. /*    BINKLEYTERM  LICENSING  AGREEMENT.  IF YOU DO NOT FIND THE TEXT OF    */
  23. /*    THIS  AGREEMENT IN ANY OF THE  AFOREMENTIONED FILES,  OR IF YOU DO    */
  24. /*    NOT HAVE THESE FILES,  YOU  SHOULD  IMMEDIATELY CONTACT BIT BUCKET    */
  25. /*    SOFTWARE CO.  AT ONE OF THE  ADDRESSES  LISTED BELOW.  IN NO EVENT    */
  26. /*    SHOULD YOU  PROCEED TO USE THIS FILE  WITHOUT HAVING  ACCEPTED THE    */
  27. /*    TERMS  OF  THE  BINKLEYTERM  LICENSING  AGREEMENT,  OR  SUCH OTHER    */
  28. /*    AGREEMENT AS YOU ARE ABLE TO REACH WITH BIT BUCKET SOFTWARE, CO.      */
  29. /*                                                                          */
  30. /*                                                                          */
  31. /* You can contact Bit Bucket Software Co. at any one of the following      */
  32. /* addresses:                                                               */
  33. /*                                                                          */
  34. /* Bit Bucket Software Co.        FidoNet  1:104/501, 1:343/491             */
  35. /* P.O. Box 460398                AlterNet 7:42/1491                        */
  36. /* Aurora, CO 80046               BBS-Net  86:2030/1                        */
  37. /*                                Internet f491.n343.z1.fidonet.org         */
  38. /*                                                                          */
  39. /* Please feel free to contact us at any time to share your comments about  */
  40. /* our software and/or licensing policies.                                  */
  41. /*                                                                          */
  42. /*--------------------------------------------------------------------------*/
  43.  
  44. typedef struct
  45. {
  46.     int vfossil_size;
  47.     int vfossil_major;
  48.     int vfossil_revision;
  49.     int vfossil_highest;
  50. } VFOSSIL, *VFOSSILP;
  51.  
  52. #ifndef OS_2
  53.  
  54. typedef struct
  55. {
  56.     int cur_start;
  57.     int cur_end;
  58.     int cur_wid;
  59.     int cur_attr;
  60. } CURSOR, *CURSORP;
  61.  
  62. typedef CURSOR far *PVIOCURSORINFO;
  63.  
  64. typedef struct _VIOCONFIGINFO
  65. {                                /* vioin */
  66.     USHORT cb;
  67.     USHORT adapter;
  68.     USHORT display;
  69.     unsigned long cbMemory;
  70. } VIOCONFIGINFO;
  71.  
  72. typedef VIOCONFIGINFO far *PVIOCONFIGINFO;
  73.  
  74. typedef struct _VIOMODEINFO
  75. {                                /* viomi */
  76.     USHORT cb;
  77.     unsigned char fbType;
  78.     unsigned char color;
  79.     USHORT col;
  80.     USHORT row;
  81.     USHORT hres;
  82.     USHORT vres;
  83.     unsigned char fmt_ID;
  84.     unsigned char attrib;
  85. } VIOMODEINFO;
  86.  
  87. typedef VIOMODEINFO far *PVIOMODEINFO;
  88.  
  89. #endif /* !defined OS_2 */
  90.  
  91. #ifdef _WIN32                    /* Subset Vio with console calls */
  92.  
  93. USHORT VioWrtTTY (PCH pchString, USHORT cbString, USHORT hvio);
  94. USHORT VioWrtCellStr (PCH pchCellString, USHORT cbCellString, USHORT usRow, USHORT usColumn, USHORT hvio);
  95.  
  96. #endif
  97.  
  98. #ifdef DOS16                    /* Vio using VFOSSIL */
  99.  
  100. struct vfossil_hooks
  101. {                                /* VFossil calls structure */
  102.     USHORT (pascal far * GetMode) (PVIOMODEINFO, USHORT);
  103.     USHORT (pascal far * SetMode) (PVIOMODEINFO, USHORT);
  104.     USHORT (pascal far * GetConfig) (USHORT, PVIOCONFIGINFO, USHORT);
  105.     USHORT (pascal far * WrtTTY) (PCH, USHORT, USHORT);
  106.     USHORT (pascal far * GetAnsi) (USHORT far *, USHORT);
  107.     USHORT (pascal far * SetAnsi) (USHORT, USHORT);
  108.     USHORT (pascal far * GetCurPos) (USHORT far *, USHORT far *, USHORT);
  109.     USHORT (pascal far * SetCurPos) (USHORT, USHORT, USHORT);
  110.     USHORT (pascal far * GetCurType) (PVIOCURSORINFO, USHORT);
  111.     USHORT (pascal far * SetCurType) (PVIOCURSORINFO, USHORT);
  112.     USHORT (pascal far * ScrollUp) (USHORT, USHORT, USHORT, USHORT, USHORT, PCH, USHORT);
  113.     USHORT (pascal far * ScrollDn) (USHORT, USHORT, USHORT, USHORT, USHORT, PCH, USHORT);
  114.     USHORT (pascal far * ReadCellStr) (PCH, USHORT far *, USHORT, USHORT, USHORT);
  115.     USHORT (pascal far * ReadCharStr) (PCH, USHORT far *, USHORT, USHORT, USHORT);
  116.     USHORT (pascal far * WrtCellStr) (PCH, USHORT, USHORT, USHORT, USHORT);
  117.     USHORT (pascal far * WrtCharStr) (PCH, USHORT, USHORT, USHORT, USHORT);
  118.     USHORT (pascal far * WrtCharStrAtt) (PCH, USHORT, USHORT, USHORT, PCH, USHORT);
  119.     USHORT (pascal far * WrtNAttr) (PCH, USHORT, USHORT, USHORT, USHORT);
  120.     USHORT (pascal far * WrtNCell) (USHORT far *, USHORT, USHORT, USHORT, USHORT);
  121.     USHORT (pascal far * WrtNChar) (PCH, USHORT, USHORT, USHORT, USHORT);
  122. };
  123.  
  124. /* Now for readability (and portability) ... */
  125.  
  126. #define VioGetMode(a,b)            (*vfossil_funcs.GetMode)(a,b)
  127. #define VioSetMode(a,b)            (*vfossil_funcs.SetMode)(a,b)
  128. #define VioGetConfig(a,b,c)        (*vfossil_funcs.GetConfig)(a,b,c)
  129. #define VioWrtTTY(a,b,c)           (*vfossil_funcs.WrtTTY)(a,b,c)
  130. #define VioGetANSI(a,b)            (*vfossil_funcs.GetANSI)(a,b)
  131. #define VioSetANSI(a,b)            (*vfossil_funcs.SetANSI)(a,b)
  132. #define VioGetCurPos(a,b,c)        (*vfossil_funcs.GetCurPos)(a,b,c)
  133. #define VioSetCurPos(a,b,c)        (*vfossil_funcs.SetCurPos)(a,b,c)
  134. #define VioGetCurType(a,b)         (*vfossil_funcs.GetCurType)(a,b)
  135. #define VioSetCurType(a,b)         (*vfossil_funcs.SetCurType)(a,b)
  136. #define VioScrollUp(a,b,c,d,e,f,g) (*vfossil_funcs.ScrollUp)(a,b,c,d,e,f,g)
  137. #define VioScrollDn(a,b,c,d,e,f,g) (*vfossil_funcs.ScrollDn)(a,b,c,d,e,f,g)
  138. #define VioReadCellStr(a,b,c,d,e)  (*vfossil_funcs.ReadCellStr)(a,b,c,d,e)
  139. #define VioReadCharStr(a,b,c,d,e)  (*vfossil_funcs.ReadCharStr)(a,b,c,d,e)
  140. #define VioWrtCellStr(a,b,c,d,e)   (*vfossil_funcs.WrtCellStr)(a,b,c,d,e)
  141. #define VioWrtCharStr(a,b,c,d,e)   (*vfossil_funcs.WrtCharStr)(a,b,c,d,e)
  142. #define VioWrtCharStrAtt(a,b,c,d,e,f) (*vfossil_funcs.WrtCharStrAtt)(a,b,c,d,e,f)
  143. #define VioWrtNAttr(a,b,c,d,e)     (*vfossil_funcs.WrtNAttr)(a,b,c,d,e)
  144. #define VioWrtNCell(a,b,c,d,e)     (*vfossil_funcs.WrtNCell)(a,b,c,d,e)
  145. #define VioWrtNChar(a,b,c,d,e)     (*vfossil_funcs.WrtNChar)(a,b,c,d,e)
  146.  
  147. #endif                            /* DOS16 */
  148.  
  149. #ifdef OS_2
  150.  
  151. #define INCL_SUB
  152. #define INCL_VIO
  153. /* #include <bsesub.h> */
  154. #define CURSOR VIOCURSORINFO
  155. #define CURSORP PVIOCURSORINFO
  156.  
  157. #endif                            /* ifdef OS_2 */
  158.  
  159.